home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000077_news@newsmaster….columbia.edu _Mon Jan 12 10:55:41 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA22896
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 12 Jan 1998 10:55:40 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA07842
  7.     for kermit.misc@watsun; Mon, 12 Jan 1998 10:55:40 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Sending a Raw binary file?
  12. Date: 12 Jan 1998 15:55:38 GMT
  13. Organization: Columbia University
  14. Lines: 27
  15. Message-ID: <69dedq$39i$1@apakabar.cc.columbia.edu>
  16. References: <34B80EE6.6B7D@netlink.com.au>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8250
  19.  
  20. In article <34B80EE6.6B7D@netlink.com.au>,
  21. Ross Irvine  <rirvine@netlink.com.au> wrote:
  22. : I'd like to know how to send a raw binary file with Kermit for DOS 3.15.
  23. : The reason for this, is I want to be able to upgrade the flash rom on
  24. : some ISDN modems that I have attached to kermit 3.15. I havce the
  25. : instructions on how this is done without using the modem's windows 95
  26. : gui.
  27. : I looked at using TRANSMIT but it waits for prompts and converts lf/cr
  28. : etc so that's no good. I also looked at using TYPE, but if it's like DOS
  29. : type it's end on a control-z. Obviously using SEND will be no good as
  30. : it'll also send the kermit protocol information.
  31. : I need a way of sending a binary file to the com port that doesn't do
  32. : any convertion of cr/lf, doesn't expand \% codes etc.
  33. Although it is not necessarily recommended, there is a way that might work:
  34.  
  35.   set file type binary
  36.   set transmit prompt \0
  37.   set transmit line-feeds-sent on
  38.   transmit <filename>
  39.  
  40. I tested this locally on a short binary file that contains all 256 possible
  41. byte values and it worked OK.
  42.  
  43. - Frank